home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 5
/
Aminet 5 - March 1995.iso
/
Aminet
/
misc
/
amag
/
AM9410_2.lha
/
Haufenweise
/
Programme
/
AllocSupport.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-15
|
690b
|
36 lines
#ifndef ALLOC_SUPPORT_H
#define ALLOC_SUPPORT_H
/*
* Include-Datei AllocSupport.h für AllocSupport.c
*
* $VER: AllocSupport.h 1.0 © D. Göhler (11.07.94)
*/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef EXEC_MEMORY_H
#include <exec/memory.h>
#endif
#ifndef EXEC_LISTS_H
#include <exec/lists.h>
#endif
#ifndef CLIB_EXEC_PROTOS_H
#include <clib/exec_protos.h>
#endif
#ifndef CLIB_ALIB_PROTOS_H
#include <clib/alib_protos.h>
#endif
struct MemHeader *AllocMemHeader(ULONG Size, ULONG Flags);
void FreeMemHeader(struct MemHeader *mh);
void *AllocateVec(struct MemHeader *mh, ULONG len);
void DeallocateVec(struct MemHeader *mh, APTR mem);
#endif /* ALLOC_SUPPORT_H */